home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’96
/
Booting Gallery
/
Booting Gallery (source)
/
(Libraries)
/
Fluent Libraries
/
Utils
/
Semaphore.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-06-22
|
309 b
|
24 lines
|
[
TEXT/BROW
]
// Semaphore.h
// Created by Bill Hubauer on Sun, May 28, 1995 @ 7:13 PM.
#ifndef __Semaphore__
#define __Semaphore__
class CSemaphore
{
public:
CSemaphore();
virtual ~CSemaphore();
Boolean Grab();
void Release();
Boolean InUseQ() {return _inUseQ;}
protected:
Boolean _inUseQ;
};
#endif